home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000329_news@columbia.edu_Wed Jul 12 02:36:12 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25308
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Jul 1995 11:24:48 -0400
  3. Received: by apakabar.cc.columbia.edu id AA21339
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Jul 1995 11:24:45 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!solaris.cc.vt.edu!swiss.ans.net!europa.chnt.gtegsc.com!gatech!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: MS-DOS Kermit - remote query bug?
  9. Message-Id: <1995Jul12.083612.55906@cc.usu.edu>
  10. Date: 12 Jul 95 08:36:12 MDT
  11. References: <3tvfa7$oej@ccnet.ccnet.com>
  12. Organization: Utah State University
  13. Lines: 44
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3tvfa7$oej@ccnet.ccnet.com>, davidm@ccnet.com (David MacMahon) writes:
  17. > I am using MS-DOS Kermit (v3.14 patch level 8) to dial into a Sun 
  18. > (running Solaris 2.3) where I run C-Kermit 5A(190).  Once connected I put 
  19. > the remote kermit (i.e. on the Sun) into server mode then escape back 
  20. > (Alt-X) to my local kermit prompt.  I then proceed with the following 
  21. > dialog...
  22. > [C:\KERMIT] MS-Kermit>remote assign \%a foo
  23. > [C:\KERMIT] MS-Kermit>remote query user \%a
  24. > Message: foo
  25. > [C:\KERMIT] MS-Kermit>echo \v(query)
  26. > foo
  27. > [C:\KERMIT] MS-Kermit>set display quiet
  28. > [C:\KERMIT] MS-Kermit>remote query user \%a
  29. > [C:\KERMIT] MS-Kermit>echo \v(query)
  30. >
  31.     Setting the display to quiet suppresses display of responses
  32. from the remote host. The command works, but Kermit has discarded the
  33. output (part of nothing to show). Hence \v(query) is also empty. Only
  34. another REM QUERY can fill up \v(query) again. The reasons for all this
  35. are rather technical in that retaining the response of a command to a
  36. server normally isn't done (memory consumption problems) so we have to
  37. play some games to see if a buffer is still valid and if so stuff it into
  38. \v(query). Display regular/quiet comes into the act half way through the 
  39. Rem Query part and there isn't anything in a buffer to use as \v(query).
  40.  
  41.      Joe D.
  42.  
  43. > [C:\KERMIT] MS-Kermit>set display regular
  44. > [C:\KERMIT] MS-Kermit>echo \v(query)
  45. > [C:\KERMIT] MS-Kermit>
  46. >
  47. > It seems that remote query doesn't work if set display quiet is in 
  48. > effect.  Has anybody else seen this?  Is this a feature or a bug or have 
  49. > I been working too long on this?
  50. > Any and all help on this matter greatly appreciated!
  51. > Dave
  52. > David MacMahon
  53. > davidm@ccnet.com